home *** CD-ROM | disk | FTP | other *** search
- #!/bin/sh
- #
- # SID @(#)p_makedev.sh 1.2 - 95/10/16
- #
- # Copyright (c) 1990-1998 Enlighten Software Solutions, Inc.
- # -- All Rights Reserved --
- #
- # created by: Thomas Kraus, February 8, 1994
- #
-
-
- if test $# -lt 2
- then
- echo "Usage: $0 architecture SCSI-ID"
- echo
- echo "Where architecture is one of:"
- echo " AIX SUN4"
- echo " SOLARIS SCO"
- echo " HPUX DGUX"
- echo " OSF1"
- exit 1
- fi
-
- exitval=1
-
- case "$1" in
- SOLARIS)
- #
- # SPARC SOLARIS
- #
-
- echo "Reconfigure the /devices directory. One moment please ..."
-
- /usr/sbin/drvconfig
-
- /usr/sbin/disks
-
- echo "... done"
-
- exitval=0;
- ;;
-
- AIX) echo "Function not yet supported" ;;
-
- SUN4) echo "Function not yet supported" ;;
-
- SCO) echo "Function not yet supported" ;;
-
- HPUX) echo "Function not yet supported" ;;
-
- DGUX) echo "Function not yet supported" ;;
-
- OSF1) echo "Function not yet supported" ;;
-
- esac
-
- exit $exitval
-